Safe Report Comments

설명

This plugin gives your visitors the possibility to report a comment as inappropriate. After a set threshold is reached the comment is put into moderation where the moderator can decide whether to approve it. If a comment is approved by a moderator it will not be auto-moderated again while still counting the amount of reports.

Customizations

By default this plugin should work with most existing themes without any changes. It appends the flagging link to each comment and then, in the browser, moves it next to that comment’s reply link. The reply link is located via its core data-commentid attribute, so placement does not depend on your theme’s specific markup.

The report link ships unstyled and inherits your theme’s link styles from wherever it appears, so it can look different next to a reply link than at the end of a comment (the deepest threading level, which has no reply link). To adjust or unify its appearance, target the .safe-comments-report-link class in your theme’s CSS.

If you would rather control the placement yourself, you can place the flagging link manually. Define no_autostart_safe_report_comments in your theme’s functions.php file and initialize the class with auto-attachment disabled: $safe_report_comments = new Safe_Report_Comments( false );.

Here is an example of a custom setup in functions.php that places the flagging link via a comment callback function.

In functions.php:

// Flag comments plugin included in theme's functions.php - disable plugin.
define( 'no_autostart_safe_report_comments', true );
include_once( 'replace-with-path-to/safe-report-comments/safe-report-comments.php' );
// Make sure not to auto-attach to the comment reply link.
$safe_report_comments = new Safe_Report_Comments( false );

// Change link layout to have a pipe prepended.
add_filter( 'safe_report_comments_flagging_link', 'adjust_flagging_link' );
function adjust_flagging_link( $link ) {
    return ' | ' . $link;
}

// Adjust the text to "Report abuse" rather than "Report comment".
add_filter( 'safe_report_comments_flagging_link_text', 'adjust_flagging_text' );
function adjust_flagging_text( $text ) {
    return 'Report abuse';
}

In your custom comment callback function used by wp_list_comments, place the following action, which prints the link:

<?php do_action( 'comment_report_abuse_link' ); ?>

A possible callback function could look like this:

function mytheme_comment( $comment, $args, $depth ) {
    $GLOBALS['comment'] = $comment; ?>
    <li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
        <div id="comment-<?php comment_ID(); ?>">
            <div class="comment-author vcard">
                <?php echo get_avatar( $comment, $size = '48', $default = '<path_to_url>' ); ?>
                <?php printf( __( '<cite class="fn">%s</cite> <span class="says">says:</span>' ), get_comment_author_link() ) ?>
            </div>
            <?php if ( $comment->comment_approved == '0' ) : ?>
            <em><?php _e( 'Your comment is awaiting moderation.' ) ?></em>
            <br />
        <?php endif; ?>
        <div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf( __( '%1$s at %2$s' ), get_comment_date(), get_comment_time() ) ?></a><?php edit_comment_link( __( '(Edit)' ), '     ', '' ) ?></div>

        <?php comment_text() ?>

        <div class="reply">
            <?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ) ?>
        </div>
        <div class="report-abuse">
            <?php do_action( 'comment_report_abuse_link' ); ?>
        </div>
    </div>
    <?php
}

There are various other actions and filters within the plugin that allow you to alter its behaviour. Please see the inline documentation for details.

Notes

At the maximum threading depth WordPress does not render a reply link, so in automatic mode the flagging link stays at the end of the comment rather than moving next to a reply link. The link still works as normal. Earlier versions attached to the reply link itself and so showed no flagging link at all at this depth.

스크린샷

설치

  1. Download and unzip the plugin.
  2. Copy the safe-report-comments directory into your plugins folder.
  3. Visit your Plugins page and activate the plugin.
  4. A new checkbox called “Allow comment flagging” will appear on the Settings Discussion page.
  5. Activate the flag and set the threshold value, which appears on the same page once flagging is enabled.

후기

2016년 9월 3일
It may work with the lousy WordPress templates you get for free when you install WordPress, but since most people use third-party templates, this falls short. After installing and turning it on, doing the settings, it simply wouldn’t show up on the front-end. I looked at the page’s source code, and the js and what-not was there just not anyway to flag the comment. I”ve tried a lot of plugins that purport to do this, and they all fail except for Frontend Comment Moderation. That works but it doesn’t send an email to notify you a comment has been flagged. Sigh.
2017년 2월 8일
I need this plugin but I want to change the position so I can use it. I still want it to be on the same line with the reply button but to be in the right side, not near the Reply button. Can you help me with this ? Thank you.
모든 7 평가 읽기

기여자 & 개발자

“Safe Report Comments”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Safe Report Comments”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

The full changelog is maintained in CHANGELOG.md.